home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / cls2 / cls2.asm next >
Assembly Source File  |  1993-11-30  |  309b  |  24 lines

  1.     include "i:\macro\hard.mac"
  2. start:
  3.     vram16on
  4.     mov    ebx,0
  5.     mov    ecx,07ffffh/4
  6. clearing1:
  7.     mov    dword ptr es:[ebx],0
  8.     add    ebx,4
  9.     loop    clearing1
  10.  
  11.     vram256on    
  12.     mov    ebx,0
  13.     mov    ecx,07ffffh/4
  14. clearing2:
  15.     mov    dword ptr es:[ebx],0
  16.     add    ebx,4
  17.     loop    clearing2
  18.     
  19.     int    20h
  20.     
  21. .stack    100h
  22.     end    start
  23.     
  24.